home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pesquisa Dirigida
/
Pesquisa Dirigida.iso
/
JOGOS
/
lightning_break.swf
/
scripts
/
DefineButton2_49
/
BUTTONCONDACTION on(release, releaseOutside).as
< prev
Wrap
Text File
|
2005-01-07
|
479b
|
21 lines
on(release, releaseOutside){
if(_root.version ne "nkcheat")
{
return undefined;
}
if(this.mode == "aim")
{
aim.stopDrag();
this.engine.setSpeed(aim._x / 5,aim._y / 5);
aim._visible = false;
}
else
{
this.engine.setSpeed(0,0);
var round = 0.000001;
this.engine.setPos(int(_root._xmouse / round) * round,int(_root._ymouse / round) * round);
this.stopDrag();
_root.startAim();
}
}